home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / setbuf.c,v < prev    next >
Text File  |  1991-12-02  |  2KB  |  94 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.1.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.06.10.16.23.57;  author ouster;  state Exp;
  11. branches 1.1.1.1;
  12. next     ;
  13.  
  14. 1.1.1.1
  15. date     91.12.02.20.02.14;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24.  
  25. 1.1
  26. log
  27. @Initial revision
  28. @
  29. text
  30. @/* 
  31.  * setbuf.c --
  32.  *
  33.  *    Source code for the "setbuf" library procedure.
  34.  *
  35.  * Copyright 1988 Regents of the University of California
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appear in all copies.  The University of California
  40.  * makes no representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  */
  44.  
  45. #ifndef lint
  46. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  47. #endif not lint
  48.  
  49. #include "stdio.h"
  50.  
  51. /*
  52.  *----------------------------------------------------------------------
  53.  *
  54.  * setbuf --
  55.  *
  56.  *    Use a user-allocated buffer for a stdio stream.
  57.  *
  58.  * Results:
  59.  *    None.
  60.  *
  61.  * Side effects:
  62.  *    From now on, buf will be used as the buffer for stream.  If
  63.  *    buf is NULL, then the stream will be unbuffered.
  64.  *
  65.  *----------------------------------------------------------------------
  66.  */
  67.  
  68. void
  69. setbuf(stream, buf)
  70.     FILE *stream;        /* Stream to be re-buffered. */
  71.     char *buf;            /* Buffer area;  must hold at least BUFSIZ
  72.                  * bytes, and must live as long as stream
  73.                  * does.  NULL means stream should be
  74.                  * unbuffered. */
  75. {
  76.     if (buf == 0) {
  77.     (void) setvbuf(stream, buf, _IONBF, 1);
  78.     } else {
  79.     (void) setvbuf(stream, buf, _IOFBF, BUFSIZ);
  80.     }
  81. }
  82. @
  83.  
  84.  
  85. 1.1.1.1
  86. log
  87. @Initial branch for Sprite server.
  88. @
  89. text
  90. @d17 1
  91. a17 1
  92. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/setbuf.c,v 1.1 88/06/10 16:23:57 ouster Exp $ SPRITE (Berkeley)";
  93. @
  94.